@font-face {
  font-family: 'sharetech-regular';
  src: url(https://extremities.neocities.org/mainFont/sharetech-regular-webfont.woff);
}
      
body {
  color: white; 
  background: rgba(0,6,25,1);
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: 'sharetech-regular';
  overflow-y: auto;
}

.container {
  z-index: 2;
  position: absolute;
      left: 50%;
      top: 75%;
      transform: translate(-50%, -50%);
      max-height: 80vh;
      margin: 0;
      box-shadow: 0 0 30px rgba(0,0,0,0.15);
}

img {
  pointer-events: none; 
}

a { /* removes the blue link */
  color: inherit; 
  text-decoration: none; 
}

.container > h1 {
  text-align:center;
  font-weight:normal;
  font-size:50px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom-style: solid;
}

.main_gradient {
  z-index: -99;
  position: fixed;
  background-image: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0), rgba(0,0,0,0.75));
  width: 100vw;
  height: 100vh;
}

.skills {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom-style: solid;
}

.list_of_skills {
  display:flex;
  flex-direction:row;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: 10px;
  
  margin: 0;
  padding: 0;
  list-style-type:none; 
}

.list_of_skills > li {
  flex: 1;
  text-align:center;
  padding-top:10px;
  padding-bottom: 10px;
}

.num {
  color: rgba(16,38,118,1);
  font-weight:normal;
  font-size: 35px;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
  text-shadow: rgba(17, 62, 195,1) 0px 0px 31px;
}

.works {
  margin-bottom: 20px;
  border-bottom-style: solid;
}

.works_header {
  text-align:center;
  font-size: 25px;
  margin-bottom:20px;
}

.works_list {
  margin: 0;
  padding: 0;
  list-style-type:none; 
}

.works_list > li {
  width: 100%; 
}

.header_for_work {
  text-align:center;
  font-size: 25px;
  margin-top:10px;  
  margin-bottom:10px;  
  transition: 0.5s;
}

.header_for_work:hover {
  letter-spacing: 7px;
}

.date_for_work {
  text-align:center;
  font-weight:normal;
  font-size: 15px;
  margin-bottom:20px;  
  transition: 0.5s;
}

.date_for_work:hover {
  letter-spacing: 7px; 
}

.images_for_work > img {
  display: inline-block;
  object-fit: contain;
  width: 100%;
  opacity: 0.75;
} 

.comps {
  text-align:center;
  list-style-type:none;
}

.comps_header {
  font-size: 25px;
  margin-bottom:20px;  
}

.list_of_competitions {
  display:flex;
  flex-direction:column;
  flex-wrap: nowrap;
  justify-content: space-around;
  
  margin:0;
  padding:0;
  list-style-type:none;
}

.list_of_competitions > li {
  display:flex;
  flex-direction:row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items:stretch;
  
  background: rgba(0,12,33,0.5);
  text-align:center;
  border-bottom-style: solid;
  border-color: rgba(16,38,118,1);
  
  margin-bottom: 10px;
}

.image_of_comp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex:1;
}

.actual_image {
  object-fit: contain;
  clip-path: circle();
  height: 25px;
}

.link_to_comp {
  min-height: 40px;
  height: auto;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right-style: solid;
  border-color: rgba(0,27,61,1);
  flex: 8; 
}

.rank {
  text-shadow: rgba(17, 62, 195,1) 0px 0px 31px;
  background: rgba(0,12,33,0.5);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 4; 
}

.w_rank {
  background: rgba(0,18,0,0.5);
}

.back_button {
  position:relative;
  top:22.5%;
  margin-top: 20px;
  letter-spacing: 7px;
  text-align:center; 
}

.back_button > a {
  font-size: 17px;
  display:inline-block;
  width: 52.5px;
  padding-bottom:3.33px;
  transition: 0.5s;
  border-bottom-style: solid;
  border-color: rgba(0,35,120,1);
}

.back_button > a:hover {
  width: 107px;
  letter-spacing:14px;
}


.back_button > a:after {
  content: "//";
  position: relative;
  left: 55px;
  opacity: 0;
  transition: 0.35s;
  letter-spacing: 7px;
}

.back_button > a:hover:after {
  left: 5px;
  opacity: 1;
  letter-spacing:7px;
}

.arbitrary_div {
  height: 150px;
  width: 100%;
}